aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/groups/[groupId]/edit/page.tsx
diff options
context:
space:
mode:
authorSebastien Castiel <sebastien@castiel.me>2023-12-06 12:39:54 -0500
committerSebastien Castiel <sebastien@castiel.me>2023-12-06 12:39:54 -0500
commitc72311d01a827a61d6d3d786416ddb442076d73a (patch)
tree131861ab1df1a0cb09ed52ead5ecde8edad6e997 /src/app/groups/[groupId]/edit/page.tsx
parent6c4ced0f79f801d85da5e4973ae4154f01b04dba (diff)
Better loading behavior
Diffstat (limited to 'src/app/groups/[groupId]/edit/page.tsx')
-rw-r--r--src/app/groups/[groupId]/edit/page.tsx16
1 files changed, 1 insertions, 15 deletions
diff --git a/src/app/groups/[groupId]/edit/page.tsx b/src/app/groups/[groupId]/edit/page.tsx
index 23bd865..f902428 100644
--- a/src/app/groups/[groupId]/edit/page.tsx
+++ b/src/app/groups/[groupId]/edit/page.tsx
@@ -1,9 +1,6 @@
import { GroupForm } from '@/components/group-form'
-import { Button } from '@/components/ui/button'
import { getGroup, updateGroup } from '@/lib/api'
import { groupFormSchema } from '@/lib/schemas'
-import { ChevronLeft } from 'lucide-react'
-import Link from 'next/link'
import { notFound, redirect } from 'next/navigation'
export default async function EditGroupPage({
@@ -21,16 +18,5 @@ export default async function EditGroupPage({
redirect(`/groups/${group.id}`)
}
- return (
- <main>
- <div className="mb-4">
- <Button variant="ghost" asChild>
- <Link href={`/groups/${groupId}`}>
- <ChevronLeft className="w-4 h-4 mr-2" /> Back to group
- </Link>
- </Button>
- </div>
- <GroupForm group={group} onSubmit={updateGroupAction} />
- </main>
- )
+ return <GroupForm group={group} onSubmit={updateGroupAction} />
}